home *** CD-ROM | disk | FTP | other *** search
/ Amiga Game-Power / Amiga Game-Power.iso / pd mix ii / access / thai / trans.h < prev    next >
C/C++ Source or Header  |  1994-05-20  |  272b  |  18 lines

  1.  
  2. #define MAX_SYL_LENGTH    12
  3.  
  4. #define HIGH_TONE        0
  5. #define RISING_TONE        1
  6. #define MIDDLE_TONE        2
  7. #define COMMON_TONE        2
  8. #define LOW_TONE        3
  9. #define FALLING_TONE    4
  10. #define DROPPING_TONE    4
  11.  
  12. struct syllable {
  13.     SHORT    tone;
  14.     SHORT    duration;
  15.     char    phonemes[ MAX_SYL_LENGTH ];
  16. };
  17.  
  18.